home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / gnu_oleo_1_2_2.lha / oleo-1.2.2 / line.h < prev    next >
C/C++ Source or Header  |  1993-03-03  |  1KB  |  36 lines

  1. #ifndef LINEH
  2. #define LINEH
  3. /*    Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with Oleo; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18. /*  t. lord    Fri Aug  7 22:23:59 1992    */
  19.  
  20. #define LINE_MIN 28
  21.  
  22. struct line
  23. {
  24.   int alloc;
  25.   char *buf;
  26. };
  27.  
  28. #ifdef __STDC__
  29. extern void set_line (struct line *, char *);
  30. extern void sprint_line (struct line *, char *,...);
  31. #else
  32. extern void set_line ();
  33. extern void sprint_line ();
  34. #endif
  35. #endif
  36.